home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Basic / Visual Basic.60 / COMMON / TOOLS / VCM / VCM.MDB / VcmComponentContainer / 14_Cabinet / DLGSQL.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1998-05-18  |  1.3 KB  |  54 lines

  1. // DlgSQL.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes and
  4. // Templates (MFC&T).
  5. // Copyright (C) 1998 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // MFC&T Reference and related electronic documentation provided
  10. // with the library.  See these sources for detailed information
  11. // regarding the MFC&T product.
  12. //
  13.  
  14. #include "stdafx.h"
  15. #include "DBViewer.h"
  16. #include "DlgSQL.h"
  17.  
  18. #ifdef _DEBUG
  19. #define new DEBUG_NEW
  20. #undef THIS_FILE
  21. static char THIS_FILE[] = __FILE__;
  22. #endif
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CDlgSQL dialog
  26.  
  27.  
  28. CDlgSQL::CDlgSQL(CWnd* pParent /*=NULL*/)
  29.     : CDialog(CDlgSQL::IDD, pParent)
  30. {
  31.     //{{AFX_DATA_INIT(CDlgSQL)
  32.     m_strSQL = _T("");
  33.     //}}AFX_DATA_INIT
  34. }
  35.  
  36.  
  37. void CDlgSQL::DoDataExchange(CDataExchange* pDX)
  38. {
  39.     CDialog::DoDataExchange(pDX);
  40.     //{{AFX_DATA_MAP(CDlgSQL)
  41.     DDX_Text(pDX, IDC_EDITSQL, m_strSQL);
  42.     //}}AFX_DATA_MAP
  43. }
  44.  
  45.  
  46. BEGIN_MESSAGE_MAP(CDlgSQL, CDialog)
  47.     //{{AFX_MSG_MAP(CDlgSQL)
  48.         // NOTE: the ClassWizard will add message map macros here
  49.     //}}AFX_MSG_MAP
  50. END_MESSAGE_MAP()
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CDlgSQL message handlers
  54.